home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / CPicture.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-10  |  457 b   |  23 lines  |  [TEXT/KAHL]

  1. /* CIcon.h */
  2.  
  3. #pragma once
  4.  
  5. #include "CButton.h"
  6.  
  7. /* forward */
  8. class CWindow;
  9. class CEnclosure;
  10.  
  11. struct    CPicture    :    CButton
  12.     {
  13.         short        Picture;
  14.         short        PictureSelected;
  15.         EXECUTE(MyBoolean Initialized;)
  16.  
  17.         void            IPicture(LongPoint Start, LongPoint Extent, short ThePicture,
  18.                                 short ThePictureSelected, char Key, short Modifiers, CWindow* TheWindow,
  19.                                 CEnclosure* TheEnclosure);
  20.         void            RedrawNormal(void);
  21.         void            RedrawHilited(void);
  22.     };
  23.